home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS26.ADF / Lexical / lex.doc < prev    next >
Text File  |  1989-01-26  |  1KB  |  40 lines

  1.  
  2. LEX
  3.  
  4. LEX is a program which performs a number of useful functions on a text
  5. file.  It outputs word count, long word count, sentence count, and performs
  6. 3 readability algorithms on the document.  The three algorithms, and their
  7. meaning, are:
  8.  
  9. The Gunning-Fog index:  the number equals the approximate level of
  10. schooling (in years) needed to understand the document.
  11.  
  12. The Kincaid index is similar to the Gunning-Fog index in its
  13. interpretation.
  14.  
  15. The Flesch index and Flesch Grade Level indicators:  The Flesch index is
  16. inversely proportional to the difficulty of the document; the lower the
  17. scale, the harder the document.  It is based on a 1-100 scale.  The Flesch
  18. grade level indicator is again analogous to the other two.
  19.  
  20. The usefulness of three different indices is to compare their agreement.
  21. The closer their agreement, the more reliable the measure (they all use
  22. different algorithms, but usually come out pretty close).
  23.  
  24.     LEX can be invoked with the following syntax:
  25.  
  26.         LEX file { file2 file3 ...}
  27.  
  28. That is, LEX can be used to analyze any number of files in a single
  29. invocation up to the limits imposed by AmigaDos.
  30.  
  31. This is my first C project, and my first Amiga project, so if you have any
  32. feedback, send it to:
  33.  
  34.     Jeff Sullivan
  35.     739 Willow Ave
  36.     Penndel, PA  19047
  37.  
  38. All helpful criticism will be appreciated.
  39.  
  40.